home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / gemap.h < prev    next >
C/C++ Source or Header  |  1993-11-05  |  830b  |  36 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMapplication
  4. //
  5. //  A GEMapplication is an program environment in which GEM may be used.
  6. //
  7. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  8. //  This file is part of the gem++ library.
  9. //  You are free to copy and modify these sources, provided you acknowledge
  10. //  the origin by retaining this notice, and adhere to the conditions
  11. //  described in the file COPYING.LIB.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14.  
  15. #ifndef GEMap_h
  16. #define GEMap_h
  17. #include <bool.h>
  18.  
  19.  
  20. class GEMapplication
  21. {
  22. public:
  23.     GEMapplication();            // A new application
  24.     GEMapplication(const char *);        // An existing application
  25.  
  26.     ~GEMapplication();
  27.  
  28.     int Id() const { return ID; }
  29.  
  30. private:
  31.     int ID;
  32.     bool isnew;
  33. };
  34.  
  35. #endif
  36.